home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / aclocal-1.9 < prev    next >
Text File  |  2005-10-13  |  20KB  |  700 lines

  1. #!/usr/bin/perl
  2. # -*- perl -*-
  3. # Generated from aclocal.in; do not edit by hand.
  4.  
  5. eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac'
  6.     if 0;
  7.  
  8. # aclocal - create aclocal.m4 by scanning configure.ac
  9.  
  10. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
  11. #           Free Software Foundation, Inc.
  12.  
  13. # This program is free software; you can redistribute it and/or modify
  14. # it under the terms of the GNU General Public License as published by
  15. # the Free Software Foundation; either version 2, or (at your option)
  16. # any later version.
  17.  
  18. # This program is distributed in the hope that it will be useful,
  19. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. # GNU General Public License for more details.
  22.  
  23. # You should have received a copy of the GNU General Public License
  24. # along with this program; if not, write to the Free Software
  25. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  26. # 02110-1301, USA.
  27.  
  28. # Written by Tom Tromey <tromey@redhat.com>.
  29.  
  30. BEGIN
  31. {
  32.   my $perllibdir = $ENV{'perllibdir'} || '/usr/share/automake-1.9';
  33.   unshift @INC, (split ':', $perllibdir);
  34. }
  35.  
  36. use Automake::Config;
  37. use Automake::General;
  38. use Automake::Configure_ac;
  39. use Automake::Channels;
  40. use Automake::XFile;
  41. use Automake::FileUtils;
  42. use File::Basename;
  43. use File::stat;
  44. use Cwd;
  45.  
  46. # Note that this isn't pkgdatadir, but a separate directory.
  47. # Note also that the versioned directory is handled later.
  48. $acdir = '/usr/share/aclocal';
  49. $default_acdir = $acdir;
  50. # contains a list of directories, one per line, to be added
  51. # to the dirlist in addition to $acdir, as if -I had been
  52. # added to the command line.  If acdir has been redirected,
  53. # we will also check the specified acdir (this is done later).
  54. $default_dirlist = "$default_acdir/dirlist";
  55.  
  56. # Some globals.
  57.  
  58. # configure.ac or configure.in.
  59. my $configure_ac;
  60.  
  61. # Output file name.
  62. $output_file = 'aclocal.m4';
  63.  
  64. # Modification time of the youngest dependency.
  65. $greatest_mtime = 0;
  66.  
  67. # Option --force.
  68. $force_output = 0;
  69.  
  70. # Which macros have been seen.
  71. %macro_seen = ();
  72.  
  73. # Which files have been seen.
  74. %file_seen = ();
  75.  
  76. # Remember the order into which we scanned the files.
  77. # It's important to output the contents of aclocal.m4 in the opposite order.
  78. # (Definitions in first files we have scanned should override those from
  79. # later files.  So they must appear last in the output.)
  80. @file_order = ();
  81.  
  82. # Map macro names to file names.
  83. %map = ();
  84.  
  85. # Ditto, but records the last definition of each macro as returned by --trace.
  86. %map_traced_defs = ();
  87.  
  88. # Map file names to file contents.
  89. %file_contents = ();
  90.  
  91. # Map file names to included files (transitively closed).
  92. %file_includes = ();
  93.  
  94. # How much to say.
  95. $verbose = 0;
  96.  
  97. # Matches a macro definition.
  98. #   AC_DEFUN([macroname], ...)
  99. # or
  100. #   AC_DEFUN(macroname, ...)
  101. # When macroname is `['-quoted , we accept any character in the name,
  102. # except `]'.  Otherwise macroname stops on the first `]', `,', `)',
  103. # or `\n' encountered.
  104. $ac_defun_rx =
  105.   "(?:AU_ALIAS|A[CU]_DEFUN|AC_DEFUN_ONCE)\\((?:\\[([^]]+)\\]|([^],)\n]+))";
  106.  
  107. # Matches an AC_REQUIRE line.
  108. $ac_require_rx = "AC_REQUIRE\\((?:\\[([^]]+)\\]|([^],)\n]+))\\)";
  109.  
  110. # Matches an m4_include line
  111. $m4_include_rx = "(?:m4_)?(s?)include\\((?:\\[([^]]+)\\]|([^],)\n]+))\\)";
  112.  
  113.  
  114. ################################################################
  115.  
  116. # Check macros in acinclude.m4.  If one is not used, warn.
  117. sub check_acinclude ()
  118. {
  119.   foreach my $key (keys %map)
  120.     {
  121.       # FIXME: should print line number of acinclude.m4.
  122.       warn ("aclocal: warning: macro `$key' defined in "
  123.         . "acinclude.m4 but never used\n")
  124.     if $map{$key} eq 'acinclude.m4' && ! $macro_seen{$key};
  125.     }
  126. }
  127.  
  128. ################################################################
  129.  
  130. # Scan all the installed m4 files and construct a map.
  131. sub scan_m4_files (@)
  132. {
  133.     local (@dirlist) = @_;
  134.  
  135.     # First, scan configure.ac.  It may contain macro definitions,
  136.     # or may include other files that define macros.
  137.     &scan_file ($configure_ac, 'aclocal');
  138.  
  139.     # Then, scan acinclude.m4 if it exists.
  140.     if (-f 'acinclude.m4')
  141.     {
  142.     &scan_file ('acinclude.m4', 'aclocal');
  143.     }
  144.  
  145.     # Finally, scan all files in our search path.
  146.     local ($m4dir);
  147.     foreach $m4dir (@dirlist)
  148.     {
  149.     if (! opendir (DIR, $m4dir))
  150.       {
  151.         print STDERR "aclocal: couldn't open directory `$m4dir': $!\n";
  152.         exit 1;
  153.       }
  154.  
  155.     local ($file, $fullfile);
  156.     # We reverse the directory contents so that foo2.m4 gets
  157.     # used in preference to foo1.m4.
  158.     foreach $file (reverse sort grep (! /^\./, readdir (DIR)))
  159.     {
  160.         # Only examine .m4 files.
  161.         next unless $file =~ /\.m4$/;
  162.  
  163.         # Skip some files when running out of srcdir.
  164.         next if $file eq 'aclocal.m4';
  165.  
  166.         $fullfile = File::Spec->canonpath ("$m4dir/$file");
  167.         &scan_file ($fullfile, 'aclocal');
  168.     }
  169.     closedir (DIR);
  170.     }
  171.  
  172.     # Construct a new function that does the searching.  We use a
  173.     # function (instead of just evaluating $search in the loop) so that
  174.     # "die" is correctly and easily propagated if run.
  175.     my $search = "sub search {\nmy \$found = 0;\n";
  176.     foreach my $key (reverse sort keys %map)
  177.     {
  178.     $search .= ('if (/\b\Q' . $key . '\E(?!\w)/) { & add_macro ("' . $key
  179.             . '"); $found = 1; }' . "\n");
  180.     }
  181.     $search .= "return \$found;\n};\n";
  182.     eval $search;
  183.     die "internal error: $@\n search is $search" if $@;
  184. }
  185.  
  186. ################################################################
  187.  
  188. # Add a macro to the output.
  189. sub add_macro ($)
  190. {
  191.     local ($macro) = @_;
  192.  
  193.     # Ignore unknown required macros.  Either they are not really
  194.     # needed (e.g., a conditional AC_REQUIRE), in which case aclocal
  195.     # should be quiet, or they are needed and Autoconf itself will
  196.     # complain when we trace for macro usage later.
  197.     return unless defined $map{$macro};
  198.  
  199.     print STDERR "aclocal: saw macro $macro\n" if $verbose;
  200.     $macro_seen{$macro} = 1;
  201.     &add_file ($map{$macro});
  202. }
  203.  
  204. # scan_configure_dep ($file)
  205. # --------------------------
  206. # Scan a configure dependency (configure.ac, or separate m4 files)
  207. # for uses of known macros and AC_REQUIREs of possibly unknown macros.
  208. # Recursively scan m4_included files.
  209. my %scanned_configure_dep = ();
  210. sub scan_configure_dep ($)
  211. {
  212.   my ($file) = @_;
  213.   # Do not scan a file twice.
  214.   return ()
  215.     if exists $scanned_configure_dep{$file};
  216.   $scanned_configure_dep{$file} = 1;
  217.  
  218.   my $mtime = mtime $file;
  219.   $greatest_mtime = $mtime if $greatest_mtime < $mtime;
  220.  
  221.   my $contents = exists $file_contents{$file} ?
  222.     $file_contents{$file} : contents $file;
  223.  
  224.   my $line = 0;
  225.   my @rlist = ();
  226.   my @ilist = ();
  227.   foreach (split ("\n", $contents))
  228.     {
  229.       ++$line;
  230.       # Remove comments from current line.
  231.       s/\bdnl\b.*$//;
  232.       s/\#.*$//;
  233.  
  234.       while (/$m4_include_rx/go)
  235.     {
  236.       my $ifile = $2 || $3;
  237.       # Skip missing `sinclude'd files.
  238.       next if $1 eq 's' && ! -f $ifile;
  239.       push @ilist, $ifile;
  240.     }
  241.  
  242.       while (/$ac_require_rx/go)
  243.     {
  244.       push (@rlist, $1 || $2);
  245.     }
  246.  
  247.       # The search function is constructed dynamically by
  248.       # scan_m4_files.  The last parenthetical match makes sure we
  249.       # don't match things that look like macro assignments or
  250.       # AC_SUBSTs.
  251.       if (! &search && /(^|\s+)(AM_[A-Z0-9_]+)($|[^\]\)=A-Z0-9_])/)
  252.     {
  253.       # Macro not found, but AM_ prefix found.
  254.       # Make this just a warning, because we do not know whether
  255.       # the macro is actually used (it could be called conditionally).
  256.       warn ("aclocal:$file:$line: warning: "
  257.         . "macro `$2' not found in library\n");
  258.     }
  259.     }
  260.  
  261.   add_macro ($_) foreach (@rlist);
  262.   &scan_configure_dep ($_) foreach (@ilist);
  263. }
  264.  
  265. # Add a file to output.
  266. sub add_file ($)
  267. {
  268.   local ($file) = @_;
  269.  
  270.   # Only add a file once.
  271.   return if ($file_seen{$file});
  272.   $file_seen{$file} = 1;
  273.  
  274.   scan_configure_dep $file;
  275. }
  276.  
  277. # Point to the documentation for underquoted AC_DEFUN only once.
  278. my $underquoted_manual_once = 0;
  279.  
  280. # scan_file ($FILE, $WHERE)
  281. # -------------------------
  282. # Scan a single M4 file ($FILE), and all files it includes.
  283. # Return the list of included files.
  284. # $WHERE is the location to use in the diagnostic if the file
  285. # does not exist.
  286. sub scan_file ($$)
  287. {
  288.   my ($file, $where) = @_;
  289.  
  290.   # Do not scan the same file twice.
  291.   return @$file_includes{$file} if exists $file_includes{$file};
  292.   # Prevent potential infinite recursion (if two files include each other).
  293.   return () if exists $file_contents{$file};
  294.  
  295.   unshift @file_order, $file;
  296.  
  297.   if (! -e $file)
  298.     {
  299.       print STDERR "$where: file `$file' does not exist\n";
  300.       exit 1;
  301.     }
  302.  
  303.   my $fh = new Automake::XFile $file;
  304.   my $contents = '';
  305.   my @inc_files = ();
  306.   my %inc_lines = ();
  307.   while ($_ = $fh->getline)
  308.     {
  309.       # Ignore `##' lines.
  310.       next if /^##/;
  311.  
  312.       $contents .= $_;
  313.  
  314.       while (/$ac_defun_rx/go)
  315.     {
  316.       if (! defined $1)
  317.         {
  318.           print STDERR "$file:$.: warning: underquoted definition of $2\n";
  319.           print STDERR "  run info '(automake)Extending aclocal'\n"
  320.         . "  or see http://sources.redhat.com/automake/"
  321.         . "automake.html#Extending-aclocal\n"
  322.         unless $underquoted_manual_once;
  323.           $underquoted_manual_once = 1;
  324.         }
  325.       my $macro = $1 || $2;
  326.       if (! defined $map{$macro})
  327.         {
  328.           print STDERR "aclocal: found macro $macro in $file: $.\n"
  329.         if $verbose;
  330.           $map{$macro} = $file;
  331.         }
  332.       else
  333.         {
  334.           # Note: we used to give an error here if we saw a
  335.           # duplicated macro.  However, this turns out to be
  336.           # extremely unpopular.  It causes actual problems which
  337.           # are hard to work around, especially when you must
  338.           # mix-and-match tool versions.
  339.           print STDERR "aclocal: ignoring macro $macro in $file: $.\n"
  340.         if $verbose;
  341.         }
  342.     }
  343.  
  344.       while (/$m4_include_rx/go)
  345.     {
  346.       my $ifile = $2 || $3;
  347.       # Skip missing `sinclude'd files.
  348.       next if $1 eq 's' && ! -f $ifile;
  349.       push (@inc_files, $ifile);
  350.       $inc_lines{$ifile} = $.;
  351.     }
  352.     }
  353.   $file_contents{$file} = $contents;
  354.  
  355.   # For some reason I don't understand, it does not work
  356.   # to do `map { scan_file ($_, ...) } @inc_files' below.
  357.   # With Perl 5.8.2 it undefines @inc_files.
  358.   my @copy = @inc_files;
  359.   my @all_inc_files = (@inc_files,
  360.                map { scan_file ($_, "$file:$inc_lines{$_}") } @copy);
  361.   $file_includes{$file} = \@all_inc_files;
  362.   return @all_inc_files;
  363. }
  364.  
  365. # strip_redundant_includes (%FILES)
  366. # ---------------------------------
  367. # Each key in %FILES is a file that must be present in the output.
  368. # However some of these files might already include other files in %FILES,
  369. # so there is no point in including them another time.
  370. # This removes items of %FILES which are already included by another file.
  371. sub strip_redundant_includes (%)
  372. {
  373.   my %files = @_;
  374.  
  375.   # Always include acinclude.m4, even if it does not appear to be used.
  376.   $files{'acinclude.m4'} = 1 if -f 'acinclude.m4';
  377.   # File included by $configure_ac are redundant.
  378.   $files{$configure_ac} = 1;
  379.  
  380.   # Files at the end of @file_order should override those at the beginning,
  381.   # so it is important to preserve these trailing files.  We can remove
  382.   # a file A if it is going to be output before a file B that includes
  383.   # file A, not the converse.
  384.   foreach my $file (reverse @file_order)
  385.     {
  386.       next unless exists $files{$file};
  387.       foreach my $ifile (@{$file_includes{$file}})
  388.     {
  389.       next unless exists $files{$ifile};
  390.       delete $files{$ifile};
  391.       print STDERR "$ifile is already included by $file\n"
  392.         if $verbose;
  393.     }
  394.     }
  395.  
  396.   # configure.ac is implicitly included.
  397.   delete $files{$configure_ac};
  398.  
  399.   return %files;
  400. }
  401.  
  402. sub trace_used_macros ()
  403. {
  404.   my %files = map { $map{$_} => 1 } keys %macro_seen;
  405.   %files = strip_redundant_includes %files;
  406.  
  407.   my $traces = ($ENV{AUTOM4TE} || 'autom4te');
  408.   $traces .= " --language Autoconf-without-aclocal-m4 ";
  409.   # All candidate files.
  410.   $traces .= join (' ', grep { exists $files{$_} } @file_order) . " ";
  411.   # All candidate macros.
  412.   $traces .= join (' ', map { "--trace='$_:\$f:\$n:\$1'" } ('AC_DEFUN',
  413.                                 'AC_DEFUN_ONCE',
  414.                                 'AU_DEFUN',
  415.                                 keys %macro_seen));
  416.  
  417.   print STDERR "aclocal: running $traces $configure_ac\n" if $verbose;
  418.  
  419.   my $tracefh = new Automake::XFile ("$traces $configure_ac |");
  420.  
  421.   my %traced = ();
  422.  
  423.   while ($_ = $tracefh->getline)
  424.     {
  425.       chomp;
  426.       my ($file, $macro, $arg1) = split (/:/);
  427.  
  428.       $traced{$macro} = 1 if $macro_seen{$macro};
  429.  
  430.       $map_traced_defs{$arg1} = $file
  431.     if ($macro eq 'AC_DEFUN'
  432.         || $macro eq 'AC_DEFUN_ONCE'
  433.         || $macro eq 'AU_DEFUN');
  434.     }
  435.  
  436.   $tracefh->close;
  437.  
  438.   return %traced;
  439. }
  440.  
  441. sub scan_configure ()
  442. {
  443.   # Make sure we include acinclude.m4 if it exists.
  444.   if (-f 'acinclude.m4')
  445.     {
  446.       add_file ('acinclude.m4');
  447.     }
  448.   scan_configure_dep ($configure_ac);
  449. }
  450.  
  451. ################################################################
  452.  
  453. # Write output.
  454. sub write_aclocal ($@)
  455. {
  456.   my ($output_file, @macros) = @_;
  457.   my $output = '';
  458.  
  459.   my %files = ();
  460.   # Get the list of files containing definitions for the macros used.
  461.   # (Filter out unused macro definitions with $map_traced_defs.  This
  462.   # can happen when an Autoconf macro is conditionally defined:
  463.   # aclocal sees the potential definition, but this definition is
  464.   # actually never processed and the Autoconf implementation is used
  465.   # instead.)
  466.   for my $m (@macros)
  467.     {
  468.       $files{$map{$m}} = 1 if $map{$m} eq $map_traced_defs{$m};
  469.     }
  470.   %files = strip_redundant_includes %files;
  471.  
  472.   for $file (grep { exists $files{$_} } @file_order)
  473.     {
  474.       # Check the time stamp of this file, and all files it includes.
  475.       for my $ifile ($file, @{$file_includes{$file}})
  476.     {
  477.       my $mtime = mtime $ifile;
  478.       $greatest_mtime = $mtime if $greatest_mtime < $mtime;
  479.     }
  480.  
  481.       # If the file to add looks like outside the project, copy it
  482.       # to the output.  The regex catches filenames starting with
  483.       # things like `/', `\', or `c:\'.
  484.       if ($file =~ m,^(?:\w:)?[\\/],)
  485.     {
  486.       $output .= $file_contents{$file} . "\n";
  487.     }
  488.       else
  489.     {
  490.       # Otherwise, simply include the file.
  491.       $output .= "m4_include([$file])\n";
  492.     }
  493.     }
  494.  
  495.   # Nothing to output?!
  496.   # FIXME: Shouldn't we diagnose this?
  497.   return if ! length ($output);
  498.  
  499.   # We used to print `# $output_file generated automatically etc.'  But
  500.   # this creates spurious differences when using autoreconf.  Autoreconf
  501.   # creates aclocal.m4t and then rename it to aclocal.m4, but the
  502.   # rebuild rules generated by Automake create aclocal.m4 directly --
  503.   # this would gives two ways to get the same file, with a different
  504.   # name in the header.
  505.   $output = "# generated automatically by aclocal $VERSION -*- Autoconf -*-
  506.  
  507. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
  508. # 2005  Free Software Foundation, Inc.
  509. # This file is free software; the Free Software Foundation
  510. # gives unlimited permission to copy and/or distribute it,
  511. # with or without modifications, as long as this notice is preserved.
  512.  
  513. # This program is distributed in the hope that it will be useful,
  514. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  515. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  516. # PARTICULAR PURPOSE.
  517.  
  518. $output";
  519.  
  520.   # We try not to update $output_file unless necessary, because
  521.   # doing so invalidate Autom4te's cache and therefore slows down
  522.   # tools called after aclocal.
  523.   #
  524.   # We need to overwrite $output_file in the following situations.
  525.   #   * The --force option is in use.
  526.   #   * One of the dependencies is younger.
  527.   #     (Not updating $output_file in this situation would cause
  528.   #     make to call aclocal in loop.)
  529.   #   * The contents of the current file are different from what
  530.   #     we have computed.
  531.   if (!$force_output
  532.       && $greatest_mtime < mtime ($output_file)
  533.       && $output eq contents ($output_file))
  534.     {
  535.       print STDERR "aclocal: $output_file unchanged\n" if $verbose;
  536.       return;
  537.     }
  538.  
  539.   print STDERR "aclocal: writing $output_file\n" if $verbose;
  540.  
  541.   my $out = new Automake::XFile "> $output_file";
  542.   print $out $output;
  543.   return;
  544. }
  545.  
  546. ################################################################
  547.  
  548. # Print usage and exit.
  549. sub usage ($)
  550. {
  551.   local ($status) = @_;
  552.  
  553.   print "Usage: aclocal [OPTIONS] ...\n\n";
  554.   print "\
  555. Generate `aclocal.m4' by scanning `configure.ac' or `configure.in'
  556.  
  557.   --acdir=DIR           directory holding config files
  558.   --help                print this help, then exit
  559.   -I DIR                add directory to search list for .m4 files
  560.   --force               always update output file
  561.   --output=FILE         put output in FILE (default aclocal.m4)
  562.   --print-ac-dir        print name of directory holding m4 files
  563.   --verbose             don't be silent
  564.   --version             print version number, then exit
  565.  
  566. Report bugs to <bug-automake\@gnu.org>.\n";
  567.  
  568.   exit $status;
  569. }
  570.  
  571. # Parse command line.
  572. sub parse_arguments (@)
  573. {
  574.   local (@arglist) = @_;
  575.   local (@dirlist);
  576.   local ($print_and_exit) = 0;
  577.  
  578.   while (@arglist)
  579.     {
  580.       if ($arglist[0] =~ /^--acdir=(.+)$/)
  581.     {
  582.       $acdir = $1;
  583.     }
  584.       elsif ($arglist[0] =~/^--output=(.+)$/)
  585.     {
  586.       $output_file = $1;
  587.     }
  588.       elsif ($arglist[0] eq '-I')
  589.     {
  590.       shift (@arglist);
  591.       push (@dirlist, $arglist[0]);
  592.     }
  593.       elsif ($arglist[0] eq '--print-ac-dir')
  594.     {
  595.       $print_and_exit = 1;
  596.     }
  597.       elsif ($arglist[0] eq '--force')
  598.     {
  599.       $force_output = 1;
  600.     }
  601.       elsif ($arglist[0] eq '--verbose')
  602.     {
  603.       ++$verbose;
  604.     }
  605.       elsif ($arglist[0] eq '--version')
  606.     {
  607.       print "aclocal (GNU $PACKAGE) $VERSION\n";
  608.       print "Written by Tom Tromey <tromey\@redhat.com>\n\n";
  609.       print "Copyright (C) 2005 Free Software Foundation, Inc.\n";
  610.       print "This is free software; see the source for copying conditions.  There is NO\n";
  611.       print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
  612.       exit 0;
  613.     }
  614.       elsif ($arglist[0] eq '--help')
  615.     {
  616.       &usage (0);
  617.     }
  618.       else
  619.     {
  620.       print STDERR "aclocal: unrecognized option -- `$arglist[0]'\nTry `aclocal --help' for more information.\n";
  621.       exit 1;
  622.     }
  623.  
  624.       shift (@arglist);
  625.     }
  626.  
  627.   if ($print_and_exit)
  628.     {
  629.       print $acdir, "\n";
  630.       exit 0;
  631.     }
  632.  
  633.   $default_dirlist="$acdir/dirlist"
  634.     if $acdir ne $default_acdir;
  635.  
  636.   # Search the versioned directory near the end, and then the
  637.   # unversioned directory last.  Only do this if the user didn't
  638.   # override acdir.
  639.   push (@dirlist, "$acdir-$APIVERSION")
  640.     if $acdir eq $default_acdir;
  641.  
  642.   # By default $(datadir)/aclocal doesn't exist.  We don't want to
  643.   # get an error in the case where we are searching the default
  644.   # directory and it hasn't been created.
  645.   push (@dirlist, $acdir)
  646.     unless $acdir eq $default_acdir && ! -d $acdir;
  647.  
  648.   # Finally, adds any directory listed in the `dirlist' file.
  649.   if (open (DEFAULT_DIRLIST, $default_dirlist))
  650.     {
  651.       while (<DEFAULT_DIRLIST>)
  652.     {
  653.       # Ignore '#' lines.
  654.       next if /^#/;
  655.       # strip off newlines and end-of-line comments
  656.       s/\s*\#.*$//;
  657.       chomp ($contents=$_);
  658.       if (-d $contents )
  659.         {
  660.           push (@dirlist, $contents);
  661.         }
  662.     }
  663.       close (DEFAULT_DIRLIST);
  664.     }
  665.  
  666.   return @dirlist;
  667. }
  668.  
  669. ################################################################
  670.  
  671. local (@dirlist) = parse_arguments (@ARGV);
  672. $configure_ac = require_configure_ac;
  673. scan_m4_files (@dirlist);
  674. scan_configure;
  675. if (! $exit_code)
  676.   {
  677.     my %macro_traced = trace_used_macros;
  678.     write_aclocal ($output_file, keys %macro_traced);
  679.   }
  680. check_acinclude;
  681.  
  682. exit $exit_code;
  683.  
  684. ### Setup "GNU" style for perl-mode and cperl-mode.
  685. ## Local Variables:
  686. ## perl-indent-level: 2
  687. ## perl-continued-statement-offset: 2
  688. ## perl-continued-brace-offset: 0
  689. ## perl-brace-offset: 0
  690. ## perl-brace-imaginary-offset: 0
  691. ## perl-label-offset: -2
  692. ## cperl-indent-level: 2
  693. ## cperl-brace-offset: 0
  694. ## cperl-continued-brace-offset: 0
  695. ## cperl-label-offset: -2
  696. ## cperl-extra-newline-before-brace: t
  697. ## cperl-merge-trailing-else: nil
  698. ## cperl-continued-statement-offset: 2
  699. ## End:
  700.